home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
STRINGS
/
TPSTR7
/
EXAM31.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-03-15
|
3KB
|
62 lines
Program Exam31;
{**************************************************************************}
{ }
{ Ce programme démontre les possibilités de StrRoll?. }
{ }
{**************************************************************************}
Uses
TpStr;
Var
S1 ,
S2 : String;
{ --------------------------------------------------------------- }
{ Procedure StrRoll(Var Str1: String;Count: Integer); }
{ --------------------------------------------------------------- }
{ }
{ Effet : Décale la la chaîne <Str1> de <Count> caractères vers la }
{ droite ou vers la gauche selon la valeur de <Count>. }
{ }
{ Usage : Chaîne pascal. }
{ }
{ Vitesse : 7800/s }
{ }
{ -------------------------------------------------------------------------}
Procedure Test1;
Begin
S1 := 'abcdefghijklmnopqrstuvwxyz';
StrRoll(S1,2);
S1 := 'abcdefghijklmnopqrstuvwxyz';
StrRoll(S1,-2);
end;
{ --------------------------------------------------------------- }
{ Function StrRoll_(Str1: String;Count: Integer):String; }
{ --------------------------------------------------------------- }
{ }
{ Effet : Idem, transformé en fonction. }
{ }
{ Usage : Chaîne pascal. }
{ }
{ Vitesse : 7800/s }
{ }
{ -------------------------------------------------------------------------}
Procedure Test2;
Begin
S1 := 'zyxwvutsrqponmlkjihgfedcba';
S2 := StrRoll_(S1,2);
S2 := StrRoll_('abcde',-2);
end;
Begin
Test1;
Test2;
End.
{ -------------------------------------------------------------------------}